Dynamic Content (cont'd...)

Printing the Options (cont'd...):


function print(){
text=
  "<html><title>Dynamic Web Page"
+ "</title><body bgcolor=fffffff>"
+ "<font size=+2><b>"
+ "Selections made by you:</b><p>"
+ "Shoes: " + p_shoes + ", Price: $" 
+ v_shoes + "<br>"
+ "Slacks: " + p_slacks + ", Price: $" 
+ v_slacks + "<br>"
+ "Dress Coat: " + p_coat + ", Price: $" 
+ v_coat + "<br>"

// continued in the next page...