﻿// JavaScript Document
<!--
<!-- Original:  Rick Johnson (frj11@ev1.net) -->
<!-- Web Site:  http://rickjohnson.tripod.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function popupWin() {
text =  "<html>\n<head>\n<title>The Promise Charity Gala Premiere</title>\n";
text += "<link href=\"scripts/style.css\" rel=\"stylesheet\" type=\"text/css\">\n";
text += "</head><body LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>\n";
text += "<TABLE align=center WIDTH=493 BORDER=0 CELLPADDING=0 CELLSPACING=0>\n";
text += "<TR><TD><IMG SRC=\"images/charitygala_01.jpg\" WIDTH=493 HEIGHT=101 ALT=\"\"></TD></TR>\n";
text += "<TR><TD><IMG SRC=\"images/charitygala_02.jpg\" WIDTH=493 HEIGHT=138 ALT=\"\"></TD></TR>\n";
text += "<TR><TD><IMG SRC=\"images/charitygala_03.jpg\" WIDTH=493 HEIGHT=101 ALT=\"\"></TD></TR>\n";
text += "<TR><TD><table width=\"100%\"  border=\"0\" cellspacing=\"0\" cellpadding=\"5\"><TR><td><strong>Event Details</strong></td></tr>\n";
text += "<tr><td>Encore Films and Golden Village Pictures, the Singapore co-distributors of the upcoming Asian blockbuster, THE PROMISE, will be working with MediaCorp Radio’s Class 95 FM to raise funds for MILK (Mainly I Love Kids) through a charity gala premiere of the film. THE PROMISE’s lead actor, Korean superstar Jang Dong Gun, will be gracing the event.\n";
text += "<p>The charity screening will be held on 14 December, 9 pm, at GV Grand, Great World City, and 100 tickets for this charity screening are up for sale. Each ticket costs S$50, and </p>\n";
text += "<p><strong>Net proceeds from the ticket sales will go to MILK, a non-profit organization that takes care of underprivileged children.</strong></p>\n";
text += "<ul><li>The tickets will go on sale this Thursday, 8 December 2005</li><li>From 12 noon, at GV Plaza</li><li>First-come-first-serve basis </li><li>For one day only</li><li>Each person may only buy up to ten tickets at one time</li><li>Sales on cash terms only</li></ul>\n";
text += "<p>Besides contributing to a good cause, the charity ticket holders will get to:</p>\n";
text += "<ul><li>Catch Jang Dong Gun at the premiere</li><li>Take home a set of five limited edition character folders featuring cast Jang Dong Gun, Cecilia Cheung, Nicholas Tse, Hiroyuki Sanada and the main movie keyart. </li><li>Stand to win three collector’s THE PROMISE stamp sets worth $100 each.</li></ul>\n";
text += "</td></tr></table></TD></TR></TABLE></BODY></HTML>\n";

setTimeout('windowProp(text)', 0); 		// delay 1 seconds before opening
}
function windowProp(text) {
newWindow = window.open('','newWin','width=515,height=450,scrollbars=yes');
newWindow.document.write(text);
setTimeout('closeWin(newWindow)', 31000);	// delay 15 seconds before closing
}
function closeWin(newWindow) {
newWindow.close();				// close small window and depart
}
-->
