function pop_up(_url) {		
	newWin = window.open(_url, 'casting', "width=585,height=550,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");	
	newWin.focus();
	}

function pop_up_p(_url) {		
	newWin = window.open('', "zdjecie", "width=485,height=500,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");	
	newWin.document.write("<html><head><title>...</title><link rel='stylesheet' href='admin_styles.css' type='text/css'></head><body>");
	newWin.document.write("<img src=", url, " align='center'></body></html>");
	newWin.focus();
	}

function pop_up_f(_url, width, height, toolbar, menubar, location, scroll, size) {
	newWin = window.open(_url, "", "width="+ width +",height="+ height +",toolbar="+ toolbar +",menubar="+ menubar +",location="+ location +",scrollbars="+ scroll +",resizable="+ size +"");
	newWin.focus();
}
