/*
 * Opens a 400x400 popup window at the specified location.
 * Used to view details of an offer.
 */
function openWindow(location)
{
	newWindow = window.open(location,"Trend","width=400,height=400,resizable,titlebar,scrollbars,screenX=100,screenY=50,left=100,top=50");

	if (newWindow.blur)
		newWindow.focus();
}


/*
 * Opens a 800x600 popup window at the specified location.
 * Used to view the details of other jobs for a customer.
 */
function openWindowFull(location)
{
	newWindow = window.open(location,"Trend","width=800,height=600,resizable,titlebar,scrollbars,screenX=100,screenY=50,left=100,top=50");

	if (newWindow.blur)
		newWindow.focus();
}


/*
 * Closes the popup window.
 */
function closeWindow()
{
	window.parent.focus();
	window.close();
}

