<!--
//FUNCTION TO OPEN NEW WINDOW
var win1='';
function openWindow(sURL)
{	
	win1 = open(sURL, 'NewWindow', "width=467,height=420,scrollbars=yes,toolbar=no,left=150,top=20");
}

var win2='';
function openWindow2(sURL)
{	
	win2 = open(sURL, 'NewWindow', "width=700,height=550,scrollbars=yes,toolbar=no,resizable=yes,left=0,top=0");
}

//FUNCTION TO CLOSE WINDOW

function closeWindow()
{
	window.close();
}
//-->