function PopPage (page, sizex, sizey)
{
	popwin = window.open(page, "popwin", "width="+sizex+", height="+sizey+", toolbar=no, menubar=no, screenX=100, screenY=100, status=no, resizeable=no, scrollbars=yes");
};

function PopLinks (page, sizex, sizey)
{
	popwin = window.open(page, "popwin", "width="+sizex+", height="+sizey+", toolbar=no, menubar=no, screenX=100, screenY=100, status=no, resizeable=yes");
};

function PopImage (image, sizex, sizey)
{
	photowin = window.open("", "photowin", "width="+sizex+", height="+sizey+", toolbar=no, menubar=no, screenX=100, screenY=100, status=no, resizeable=no");
        photowin.document.write ('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1253"><title>Προβολή Εικόνας</title></head><body>');
	photowin.document.write ('<p align="center"><img border="0" src="../images/'+image+'" onclick="javascript:window.close()">');
	photowin.document.write ('<br><Font face="Tahoma" size="2">Πατήστε πάνω στην εικόνα για να κλείσει το παράθυρο</font></p></body></html>');
};

function PopImageAbsolut (image, sizex, sizey)
{
	photowin = window.open("", "photowin", "width="+sizex+", height="+sizey+", toolbar=no, menubar=no, screenX=100, screenY=100, status=no, resizeable=no");
        photowin.document.write ('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1253"><title>Προβολή Εικόνας</title></head><body>');
	photowin.document.write ('<p align="center"><img border="0" src="'+image+'" onclick="javascript:window.close()">');
	photowin.document.write ('<br><Font face="Tahoma" size="2">Πατήστε πάνω στην εικόνα για να κλείσει το παράθυρο</font></p></body></html>');
};

function PopPhoto (image, sizex, sizey)
{
	photowin = window.open("", "photowin", "width="+sizex+", height="+sizey+", toolbar=no, menubar=no, screenX=100, screenY=100, status=no, resizeable=no");
        photowin.document.write ('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1253"><title>Προβολή Εικόνας</title></head><body>');
	photowin.document.write ('<p align="center"><img border="0" src="'+image+'" onclick="javascript:window.close()">');
	photowin.document.write ('<br><Font face="Tahoma" size="2">Πατήστε πάνω στην εικόνα για να κλείσει το παράθυρο</font></p></body></html>');
};

function PopImageAbs (image, title, sizex, sizey)
{
	photowin = window.open("", "photowin", "width="+sizex+", height="+sizey+", toolbar=no, menubar=no, screenX=100, screenY=100, status=no, resizeable=no");
        photowin.document.write ('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1253"><title>Προβολή Εικόνας</title></head><body>');
	photowin.document.write ('<p align="center"><img border="0" src="'+image+'" onclick="javascript:window.close()">');
        photowin.document.write ('<br><Font face="Tahoma" size="2">'+title+'</font></body></html>');
	photowin.document.write ('<br><Font face="Tahoma" size="2">Πατήστε πάνω στην εικόνα για να κλείσει το παράθυρο</font></p></body></html>');
};

function LoadToOpener (page, closecurrent)
{
 window.opener.location.href = page;
 if (closecurrent == true)
 {
  window.close();
 }
};