function OpenWindow(strFile,intWidth,intHeight)
{
	var features="location=no, menubar=no, status=yes, scrollbars=yes, resizable=yes, toolbar=no";
	features+=", width="+intWidth;
	features+=", height="+intHeight;
	window.open(strFile,'OpenWindow',features);
}

function CloseWindow() {
	 window.close();
}
