//|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||//
//     					 SVVS GROUP						     //
//          	  SCRIPT BY VARDAN TOROSYAN 			     // 
//				  Last updated on 12.03.2007				 //	
//|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||//


/////////////////////////////////////////window openers///////////////////////////////////////////////////////

function winopen(v_FilePath, width, height, resizable, scrollbars)
{  
    var w=width, h=height;
	var m_prop="width=" + w + ", height=" + h + 
	    ", top="+ (screen.height/2 - h/2) + ", left=" + (screen.width/2 - w/2) +
		", resizable=" + resizable + ", scrollbars=" + scrollbars; 
   window.open(v_FilePath , "_blank" , m_prop);
}


function f_WinOpen(v_FilePath, m_size)
{
 window.open(v_FilePath , "_blank" , m_size );
}

