function ValidateForm () {
	var incomplete = 'false';
	var no_thanks = 'false';
	var select_tags = document.testform.getElementsByTagName('select');
	for (x = 0; x < select_tags.length; x++) {
		if ((select_tags[x].value == '') || (select_tags[x].value == 'Please Select'))
			incomplete = 'true';

		if ((select_tags[x].value == 'N: No Thanks') || (select_tags[x].value == 'No Thanks'))
			no_thanks = 'true';
	}
	
	if ((incomplete == 'true') && (no_thanks == 'false')) {
		alert ('Please choose all selectable options');
//		document.testform.reset();
//		document.testform.elements["vwquantity0"].value = '1';
		return false;
	} else {
//		DeleteEmptyElements();
		return true;
	}
}


function openSSLPopup() {
w1 = window.open('','w1','width=400,height=250');
w1.document.write("<b><font size=\"+2\">Is PrettyBabyGifts.com secure?</font></b><p>");
w1.document.write("All order form pages of PrettyBabyGifts.com are served through a secure https connection using 256-bit SSL v3 encryption. We encrypt your credit card and personal information as you enter it in the web browser, when it is sent to our server, and finally when it is sent from our server to our order processing center. We have you protected at all stages of the transaction.");
w1.document.write("<center><a href=\"javascript:;\" onclick=\"window.close();\">close window</a></center>");
}
