/* time to clean up...the window has been closed in a non-conventional manner */

window.onunload = handler;

function handler()
{
	// window is unloading...cleanup!
	e = window.event;
	
	if (e.clientX < 0 && e.clientY < 0)
	{
		window.open("../helper/wrapup.php","OnlineLoveConnection","width=100,height=100");
	}		
}