function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures); }

function MM_openBrWindow(theURL,winName,features) { //v2.0 
        window.open(theURL,winName,features); 
} 

function MM_openKrWindow(theURL,winName,features) { //v2.0 
        window.open(theURL,winName,features);
} 

    function pencereacOzelnew(par1)
    {

	var wOpen;
	var sOptions;

	sOptions = 'status=yes,location=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes';
	sOptions = sOptions + ',width=' + (screen.availWidth-10).toString();
	sOptions = sOptions + ',height=' + (screen.availHeight-10).toString();
	sOptions = sOptions + ',screenX=0,screenY=0,left=0,top=0';

	window.open(par1,'newwindow1', sOptions);
    }
