linkURL = "vp/index.html"
	if (parent.document.URL) {
		callingURL = parent.document.URL
		if (callingURL.indexOf('?') != -1) {
			linkURL = callingURL.substring(callingURL.indexOf('?')+1,callingURL.length)
		}
	}
	document.writeln('<frameset cols="185, *" frameborder="0" framespacing="0">')
	document.writeln('<frame src="info/Control.html" name="left" scrolling="yes">')
	document.writeln('<frameset rows="220, *" >')
	document.writeln('<frame src="info/vplogo.html" name="top" scrolling="no">')
	document.writeln('<frame src="' + linkURL + '" NAME="content">')
	
	document.writeln('<\/FRAMESET>')

