function getInnerWindowWidth()
{
    var window_width = 0;
	
    if ( typeof( window.innerWidth ) == 'number' )
       window_width = window.innerWidth;
    else
    if (
         document.documentElement
      && document.documentElement.clientWidth
       )
       window_width = document.documentElement.clientWidth;
    else
    if (
         document.body
      && document.body.clientWidth
       )
       window_width = document.body.clientWidth;

    return window_width;
}
function getInnerWindowHeight()
{
    var window_height = 0;
	
    if ( typeof( window.innerHeight ) == 'number' )
       window_height = window.innerHeight;
    else
    if (
         document.documentElement
      && document.documentElement.clientHeight
       )
       window_height = document.documentElement.clientHeight;
    else
    if (
         document.body
      && document.body.clientHeight
       )
       window_height = document.body.clientHeight;

    return window_height;
}
function resizePic()
{
    var int_width = getInnerWindowWidth();
	 var int_height = getInnerWindowHeight();
	 
    if ( global_int_min_width < int_width )
		wid = int_width-29;
	else
		wid = global_int_min_width-29;
    
       document.getElementById("pic").style.width = wid;
//	  document.getElementById("quote").style.top = int_height-37;

//	   document.getElementById("quote").style.visibility = 'visible';
}