// JavaScript Document
<!--
var newwindow;
function poptastic(url, h, w)
{
winl = (screen.width-w)/2;
wint = (screen.height-h)/2;
if (winl < 0) winl = 0;
if (wint < 0) wint = 0;

windowprops = "height="+h+",width="+w+",top="+ wint +",left="+ winl +",location=no,"
+ "scrollbars=no,menubars=no,toolbars=no,resizable=yes,status=no";

	newwindow=window.open(url,'theartcrowd',windowprops);
	if (window.focus) {newwindow.focus()}
}

var newwindow2;
function my_collection_window(url)
{
	newwindow2=window.open(url,'my_collection','height=500,width=472,resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow2.focus()}
}

var newwindow3;
function product_details_window(url, h, w)
{
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
if (winl < 0) winl = 0;
if (wint < 0) wint = 0;

windowprops = "height="+h+",width="+w+",top="+ wint +",left="+ winl +",location=no,"
+ "scrollbars=no,menubars=no,toolbars=no,resizable=yes,status=no";

	newwindow3=window.open(url,'product_details',windowprops);
	if (window.focus) {newwindow3.focus()}
}
//-->