function popUp(page, width, height){
	win = eval('window.open("' + page + '","popup","width='+width+',height='+height+', resizable, scrollbars=yes")');													
	win.focus();
}

function clearInput(box,text){					
	if (box.value==text)							
		box.value="";									
}								

function deleteObj(ID, obj){	
	var msg;						
	if (obj == 'E')				
	msg = 'Are you sure you want to delete this employment record?';		
	if (obj == 'M')														
	msg = 'Are you sure you want to delete this membership record?';		
	if (obj == 'Q')														
	msg = 'Are you sure you want to delete this qualification record?';	
	if (obj == 'U')														
	msg = 'Are you sure you want to close your registration?';				
	if (obj == 'A')														
	msg = 'Are you sure you want to delete this email alert?';				

	if (confirm(msg))														
		window.location.href = 'delete.asp?ID=' + ID + '&obj=' + obj;		
}												

function deleteIncompleteApp(jobid,answersetid){				
	if (confirm('Are you sure you want to delete incomplete application?')){													
		document.location.href = 'application_delete.asp?job=' + jobid + '&aset=' + answersetid	+ '&apptype=incomplete'
	}																		
}		
