//////////////////////////////////////////////////////
//						    //
// 		POPUP ABLAK, CLICK BEZARASSAL       //
// KRSOFT 2006   - barni@krsoft.be //
//						    //	
// //////////////////////////////////////////////////
	


function ablak(imagine,dx,dy)
	{	
		
		agent=navigator.appVersion;
        	version=parseInt(agent);
        	if (version>=4) {
                			leftCorner=screen.width/2 - dx/2;
		        	        topCorner=screen.height/2 - dy/2;
        			}
			else	{
                			leftCorner=0;
		                	topCorner=0;
        			}
		myWin=open("","win","screenX="+leftCorner+",screenY="+topCorner+",left="+leftCorner+",top="+topCorner+", width="+dx+",height="+dy+",status=no,menubar=no");
		myWin.document.open();
		titlu="..:: FLAMINGO-JOBS ::..  www.flamingo-jobs.ro:";
		altt="az&nbsp;ablak&nbsp;lezárásához&nbsp;kattints&nbsp;a&nbsp;képre"
		myWin.document.write("<html><head><title>"+titlu+"</title></head>");
		myWin.document.write("<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
		myWin.document.write("<a href='javascript:window.close();'><img src="+imagine+" width="+dx+" height="+dy+" alt="+altt+" border=0 > </a> ");
		myWin.document.write("</body></html>");
		myWin.document.close();






	}


