//**************************************************************************************************************/
//	info.js
//
//	 Author: Wendy
//   popup javascript functions
//***************************************************************************************************************/

function showInfo(fileName, nWidth, nHeight, nSroll) {
	infoWindow = window.open(fileName,'win2','width=500, height=400, titlebar=0, toolbar=0, menubar=0, location=0, status=0, scrollbars=1, resizable=0, left=20, top=20'); 
}

function showForm(fileName) {
	infoWindow = window.open(fileName,'win2','width=650, height=800, titlebar=0, toolbar=0, menubar=0, location=0, status=0,  scrollbars=1, resizable=0, left=20, top=20, replace=1'); 
	infoWindow.moveTo(150,0);
}

function setForm(ifr) {
	var stallion = document.location.search;
	stallion = stallion.replace('?','&');
	var myStr = 'https://spreadsheets.google.com/embeddedform?formkey=dDBsdTZjcXR1WUZxM1k3d1JPUzR2YlE6MQ';
	/*var str2 = '" width="760" height="1090" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>';*/
	/*document.getElementById('aform').src = 	myStr;
	alert (myStr);*/
	if (ifr.src == myStr) {
		ifr.src = ifr.src + stallion;
	}
}

