function commentWindow(url) 
{
	window.open(url, "myWindow", "status = 1, height = 200, width = 300, resizable = 0" );
}


function closeWindow()
{
	window.opener.location.href = window.opener.location.href;
	window.close();
}