// JavaScript Document
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function MM_openpopup2(theURL,winName,features, myWidth, myHeight, isCenter){ //v1.0
  if (myWidth == "%" || myHeight == "%") {
  	myWidth = screen.width * 0.9;
  	myHeight = screen.height * 0.7;
	myLeft = 50;
	myTop = 50;
	features+=(features!='')?',':'';
	features+=',left='+myLeft+',top='+myTop;
  } else {
	  if(window.screen)if(isCenter)if(isCenter=="true"){
		var myLeft = (screen.width-myWidth)/2;
		var myTop = (screen.height-myHeight)/2;
		features+=(features!='')?',':'';
		features+=',left='+myLeft+',top='+myTop;
	  }
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

function open_new_window(url){
		
	var newwindow;

	newwindow=window.open(url,'Preview','height=580,width=540,screenX=100,screenY=100,left=100,	top=100,resizable=no,scrollbars=no,toolbar=no');
	if (window.focus) {newwindow.focus()}

}


//-->

