/*
function viewPage(path)
{
	viewWindow=window.open(path, "PreviewWindow", "menubar=no,scrollbars=yes,titlebar=yes,toolbar=no,location=no,status=yes,resizable=yes,favorites=1,height=600,width=850");
	viewWindow.focus();
	return false;
}
*/

function viewPage(path,width,height)
{
	viewWindow=window.open(path, "LearnTelPreviewWindow", "menubar=no,scrollbars=yes,titlebar=yes,toolbar=no,location=no,status=yes,resizable=yes,favorites=1,height=" + height + ",width=" + width);
	viewWindow.focus();
	return false;
}