/* *
 * showPopup
 * 
 */
function showPopup(url, width, height) {
	if (parseFloat(navigator.appVersion) >= 4.0) {
		pos_x = parseInt(screen.width / 2.0) - (width / 2.0);
		pos_y = parseInt(screen.height / 2.0) - (height / 2.0);
	}

	var win = window.open(url, "popup" + width + "x" + height, "width=" + width + ",height=" + height + ",left=" + pos_x + ",top=" + pos_y + ",resizable=no,scrollbars=yes");
	try {
		win.focus();
		win.moveTo(pos_x, pos_y);
	} catch (e) {
		// How unfortunate.
	}
}

// Popup form
function popForm() {
	showPopup("submit.php", 400, 300);
}

// image popup
function imgPopup(url, width, height) {


if (parseFloat(navigator.appVersion) >= 4.0) {
	pos_x = parseInt(screen.width / 2.0) - (width / 2.0);
	pos_y = parseInt(screen.height / 2.0) - (height / 2.0);
}

var win = window.open('', "popup" + width + "x" + height, "width=" + width + ",height=" + height + ",left=" + pos_x + ",top=" + pos_y + ",resizable=no,scrollbars=no,toolbar=no ,location=no, directories=no,status= no,menubar=no");
try {
	win.focus();
	win.moveTo(pos_x, pos_y);
} catch (e) {
	// How unfortunate.
}

win.document.write('<head><title>Cowabduction.com<\/title><\/head><body style="margin-top:0; margin-bottom:0; margin-left:0; margin-right:0;overflow:hidden" bgcolor="#ffffff">');
win.document.write('<img src=' + url +' ><\/body><\/html>');
win.document.close();
}