//pop-up the window
var kazeonwebsitewin=dhtmlwindow.open("kazeonwebsite", "iframe", "http://www.kazeon.com", "Scroll down or resize to see more.", "width=1000px,height=400px,resize=1,scrolling=1,center=1", "recal");
kazeonwebsite.onclose=function() //Run custom code when window is being closed (return false to cancel action)
{ 
	if(window.confirm("Close this window?"))
	{
		parent.location.replace("kazeon_index.php");
		return true;
	}
	else return false;
}
		