function showVacancy(url,myKey)
{
	var myname	=	'pxs_vacancy_detail';
	var w		=	785;
	var h		=	600;
	var scroll	=	'yes';
	var winl	=	(screen.width - w) / 2;
	var wint	=	(screen.height - h) / 4;
	var mypage	=	url;
	
//	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,location,menubar,toolbar'
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function showOpenVacancy(url,myKey)
{
    var myname  =   'pxs_open_soll';
    var w       =   785;
    var h       =   600;
    var scroll  =   'yes';
    var winl    =   (screen.width - w) / 2;
    var wint    =   (screen.height - h) / 4;
    var mypage  =   url;

//  winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,location,menubar,toolbar'
    winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable';
    win = window.open(mypage, myname, winprops);
    if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

