
function openWindow1(url) {        
        TWN=window.open(url, 'newWin', "toolbar=no,directories=no,menubar=no,width=630,height=470,location=no,scrollbars=yes,resizable=yes,status=yes")
}


function openWindow2 (url, width, height) {

    	var para = "toolbar=no,directories=no,menubar=no,width=" + width + ",height=" + height + ",location=no,scrollbars=yes,resizable=yes,status=yes";

        TWN=window.open(url, 'newWin', para );

}



function openWindow3 (url, width, height, winName) {

    	var para = "toolbar=no,directories=no,menubar=no,width=" + width + ",height=" + height + ",location=no,scrollbars=yes,resizable=yes,status=yes";

        TWN=window.open(url, 'winName', para );
}

function openWindow4 (url, width, height) {

	window.resizeTo(width, height);
	document.location = url;

}

// var TWN = null;

function doWindow (url, width, height) {

    	var para = "toolbar=no,directories=no,menubar=no,width=" + width + ",height=" + height + ",location=no,scrollbars=yes,resizable=yes,status=yes";


        TWN=window.open(url, 'newWin', para );
}

function openWindowAndSubmitForm (url, width, height, formName)
{
	openWindow2 (url, width, height);
	//form.formName.submit();
}

