function MyWindow(message) {

    //Define Date to display in local syntax

        now = new Date();
        LocalTime = now.toLocaleString();

    //Define contents of page
// message = "thephone";
        contents=
        '<body bgcolor="beige">'+
        '<h3>Seller Phone Number:</h3>'+
        
		message
		
		
        contents2=
		'<p align="center"><br><A HREF="javascript:window.close()" >'+
		
        'Close' +
        '</A></P>'

    //Create new Window

        options ="toolbar=0,status=0,menubar=0,scrollbars=0," +
                "resizable=0,width=300,height=200";
        newwindow=window.open("","mywindow", options);
	newwindow.document.writeln(LocalTime);
        newwindow.document.write(contents);
	newwindow.document.writeln(contents2);
	newwindow.document.close();

}




