var objPopup;
var objViewer;

function customVoid(){

}

function openPopup(){
	if(!objPopup || objPopup.closed){
		objPopup = window.open("fakedirtshirt.php","popup","width=511,height=600,toolbar=yes,menubar=yes,scrollbars=yes");
	}else{
		objPopup.focus();
		objPopup.location = "fakedirtshirt.php";
	}
}

function openViewer(strTitle, strLocation, strImage){
	if(!objViewer || objViewer.closed){
		objViewer = window.open("photoviewer.php?ptitle=" + strTitle + "&plocation=" + strLocation + "&pimage=" + strImage,"photoviewer","width=550,height=500, location=no, menubar=no, status=yes, toolbar=no, scrollbars=yes, resizable=yes");
	}else{
		objViewer.focus();
		objViewer.location = "photoviewer.php?ptitle=" + strTitle + "&plocation=" + strLocation + "&pimage=" + strImage;
	}
}
