//called from flash
function showImage(){
	cpop("imagePop.html",540,580);
}

//generic popup window behavior
function cpop(url, www, hhh) {
	window.open(url,"popup",'width=' + www + ',height=' + hhh + ',left=50,top=50,screenX=50,screenY=50&status=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no');
}

//fires onLoad-> dynamially resizes window
function resizeMe(width,height){
 parent.resizeTo(width,height);
}

//Generic window closing function
function closeMe(){
	window.close();
}
