function resetMyForm(formName) {
    if(confirm('Are you sure that you want to reset your form?')) document.forms[formName].reset();
}

function createWindow(winUrl) {
	//winUrl = 'answer.html';
	winTitle = 'services_details';
	winWidth = 550;
	winHeight = 450;
	winLeft = parseInt((screen.width - winWidth) / 2);
	winTop = parseInt((screen.height - winHeight) / 2);
	winProps = 'width=' + winWidth + ',height=' + winHeight + ',top=' + winTop + ',left=' + winLeft + ',resizable=1,scrollbars=1,status=1';
	a = window.open(winUrl, winTitle, winProps);
	a.resizeTo(winWidth, winHeight);
	a.moveTo(winLeft, winTop);
	a.focus();
	return false;
}     
