$(document).ready(function(){
	$(document).pngFix();
	$('form.form-validate').validate();
});

function showPhoto(url, name, w, h) {
    var left = parseInt((screen.availWidth/2)-(w/2));
    var top = parseInt((screen.availHeight/2)-(h/2));
    var windowProperties = "width="+w+",height="+h+",left="+left+",top="+top;
	win = window.open(url, name, windowProperties+",resizable=no,toolbar=0,location=0,status=yes,menubar=0,directories=0,scrollbars=yes");
	win.focus();
    return false;
}