<!-- Begin

var welcome_width	= "375"		// WELCOME POPUP WIDTH
var welcome_height	= "375"		// WELCOME POPUP HEIGHT
var scrollbar_welcome	= "no"		// WELCOME POPUP SCROLLBARS
var wX_location		= "375"		// WELCOME HORIZONTAL LOCATION
var wY_location		= "0"		// WELCOME VERTICAL LOCATION

var view_width 		= 796			// POP WIN WIDTH
var view_height 	= 500			// POP WIN HEIGHT
var close_button 	= "yes"			// CLOSE BUTTON ON/OFF
var close_button_text 	= "Close Window"	// TEXT ON THE CLOSE BUTTON
var viewer	 	= "no"			// yes/FULL SCREEN OR no/POP WIN MODE
var background_color	= "846B4A"		// BACKGROUND COLOR
var background_image	= "http://www.jpcontini.com/images/bg-popups.jpg"	// BACKGROUND IMAGE
var scrollbar 		= "1"			// POP WIN SCROLLBARS


function popReal(src,title,playerX,playerY,winX,winY) {
	src = "http://www.jpcontini.com/ram/" + src + ".ram";
   if (viewer == "no") {
var look='left=0,top=0,toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,width='+winX+',height='+winY+','
popwin=window.open("","",look)
}
else 
if (viewer == "yes") {
popwin=window.open("","")
}
popwin.document.open()

popwin.document.write('<html>\n')
popwin.document.write('<head>\n')
popwin.document.write('<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">\n')
popwin.document.write('<title>' + title + '</title>\n')
popwin.document.write('<link rel=StyleSheet href="http://www.jpcontini.com/_includes/corporatestyle.css" type="text/css" media="screen">\n')
popwin.document.write('</head>\n')
popwin.document.write('<body background="http://www.jpcontini.com/images/bg-popups.jpg" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">\n')
popwin.document.write('<table border="0" cellpadding="20" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="100%">\n')
popwin.document.write('<tr>\n')
popwin.document.write('<td width="100%" align="center" valign="middle">\n')
popwin.document.write('<table bgcolor="#000000" border="0" width="' + playerX + '" height="' + playerY + '" cellspacing="0" cellpadding="0">\n')
popwin.document.write('<tr>\n')
popwin.document.write('<td width="100%"><span style="font-family: Verdana,Arial; font-size: 8pt; color: #06FF00">&nbsp;' + title + '</span></td>\n')
popwin.document.write('</tr>\n')  
popwin.document.write('<tr>\n')
popwin.document.write('<td width="100%" valign="middle" align="center">\n')
popwin.document.write('<OBJECT ID="media" CLASSID="CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA" WIDTH="' + playerX + '" HEIGHT="' + playerY + '">\n')
popwin.document.write('<PARAM NAME="src" VALUE="' + src + '">\n')
popwin.document.write('<PARAM NAME="console" VALUE="realVideo">\n')
popwin.document.write('<PARAM NAME="controls" VALUE="ImageWindow">\n')
popwin.document.write('<PARAM NAME="autostart" VALUE="TRUE">\n')
popwin.document.write('<EMBED CONTROLS="ImageWindow" CONSOLE="realVideo" TYPE="audio/x-pn-realaudio-plugin" SRC="' + src + '" WIDTH="' + playerX + '" HEIGHT="' + playerY + '" AUTOSTART="TRUE"></EMBED>\n')
popwin.document.write('</OBJECT>\n')
popwin.document.write('<OBJECT ID="media" CLASSID="CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA" WIDTH="' + playerX + '" HEIGHT="20">\n')
popwin.document.write('<PARAM NAME="console" VALUE="realVideo">\n')
popwin.document.write('<PARAM NAME="controls" VALUE="PositionField">\n')
popwin.document.write('<PARAM NAME="autostart" VALUE="true">\n')
popwin.document.write('<EMBED CONTROLS="PositionField" CONSOLE="realVideo" TYPE="audio/x-pn-realaudio-plugin" WIDTH="' + playerX + '" HEIGHT="30" AUTOSTART="TRUE"></EMBED>\n')
popwin.document.write('</OBJECT>\n')
popwin.document.write('<OBJECT ID="media" CLASSID="CLSID:CFCDAA03-8BE4-11CF-B84B-0020AFBBCCFA" WIDTH="' + playerX + '" HEIGHT="20">\n')
popwin.document.write('<PARAM NAME="console" VALUE="realVideo">\n')
popwin.document.write('<PARAM NAME="controls" VALUE="ControlPanel">\n')
popwin.document.write('<PARAM NAME="autostart" VALUE="true">\n')
popwin.document.write('<EMBED CONTROLS="ControlPanel" CONSOLE="realVideo" TYPE="audio/x-pn-realaudio-plugin" WIDTH="' + playerX + '" HEIGHT="20" AUTOSTART="TRUE"></EMBED>\n')
popwin.document.write('</OBJECT>\n')
popwin.document.write('</td>\n')
popwin.document.write('</tr>\n')
popwin.document.write('</table>\n')
popwin.document.write('</td>\n')
popwin.document.write('</tr>\n')
popwin.document.write('</table>\n')
popwin.document.write('</body>\n')
popwin.document.write('</html>\n')

popwin.document.close()
}

//  End -->