// popwin.js

var MyWin;

function popwin(url, description, text_space)
{
	var window_property = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,top=50,left=60,width=200,height=200';

	if(MyWin)
	{
		try
		{
			if(MyWin.window.close())
			{
				throw("Error1");
			}
		}
		catch(er)
		{
			// Error catch does nothing!
		}
	}
		
	MyWin = window.open("", "New", window_property);
	MyWin.document.write("<HTML><HEAD>");
	MyWin.document.write("<script src='"+ROOT+"/javascript/right_click_prevent.js'></script>");
	MyWin.document.write("<TITLE>Plymouth Shotokan - "+description+"</TITLE></HEAD><BODY STYLE='background-color:#c0c0c0; color:black; padding: 0px; margin: 0px'>");
	MyWin.document.write("<IMG NAME=pic style='border-bottom: solid 1px white' SRC='"+url+"' onLoad='window.resizeTo(document.images[\"pic\"].width + 12, document.images[\"pic\"].height + "+text_space+");'><center><p style='color: black; font-family: verdana, tahoma, arial, helvetica; font-size: 10px; padding-left: 10px; padding-right: 10px'>"+description+"</p></center>");
	MyWin.document.write("</BODY></HTML>");
}

// opend event details in new window
function ftnEvent(id)
  {
  prod = "detail.php?id=" + id;
  window.open(prod, "_blank", "dependent=yes,Width=500,Height=400,location=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no");
  }
  
// opend past event details in new window
function ftnEventPast(id)
  {
  prod = "past_detail.php?id=" + id;
  window.open(prod, "_blank", "dependent=yes,Width=500,Height=400,location=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no");
  }
  
 // resize popup window to fit image FROM DB
function PopupPic(event_id, id) 
	{ 
     window.open( "../popup.php?event_id="+event_id+"&id="+id, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
  	} 
  
 // resize popup window to fit image from file
function PopupPicFile(picUrl) 
	{ 
     window.open( "../popup_pic.php?"+picUrl, "", "resizable=1,HEIGHT=200,WIDTH=200"); 
  	} 