
function openPhotoWindow(id, w, h, no_resize) 
{
	window.open('/showphoto/?id=' + id + (no_resize ? '&no_resize=1' : ''), 'photoWindow', 'left=200,top=100,width=' + (w + 100) + ',height=' + (h + 200) + ',resizable=0,status=0,scrollbars=0');
}


function openVideoWindow(id) 
{
	window.open('/showvideo/?id=' + id + '&no_resize=1', 'videoWindow', 'left=200,top=100,width=600,height=500,resizable=0,status=0,scrollbars=0');
}


function resizePhotoWindow(w, h) 
{
	window.resizeTo(w + 100, h + 200);

	window.focus();
}

